Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request includes several changes to improve the testing and packaging of the
decimojoandtomlmojolibraries. The most important changes involve implementing a TOML parser in packagetomlmojo, restructuring the test cases to load from a TOML file, adding new test cases, and updating the packaging commands.Improvements to testing:
tests/biguint/test_biguint_arithmetics.mojo: Refactored the test functions (test_add,test_subtract,test_multiply,test_extreme_cases) to load test cases from a TOML file and added structuredTestCasefor better test management. [1] [2] [3] [4]src/decimojo/tests.mojo: Added a new file to implementTestCasestruct and functions for managing test cases.tests/biguint/test_data/biguint_arithmetics.toml: Added a new TOML file to hold test data for BigUInt arithmetic operations, including addition, subtraction, multiplication, and extreme cases.Packaging updates:
mojoproject.toml: Updated the packaging commands to include separate packaging fordecimojoandtomlmojolibraries and updated the clean command to remove additional files.Licensing and documentation:
src/decimojo/__init__.mojo: Removed redundant comments and updated the file header.src/tomlmojo/__init__.mojo: Added a new file with licensing information and initial import statements for TOML parsing.